home *** CD-ROM | disk | FTP | other *** search
/ AMIGA-CD 2 / Amiga-CD - Volume 2.iso / ungepackte_daten / 1994 / 12 / 02 / shells / bsh / uue < prev    next >
Encoding:
Text File  |  1995-06-01  |  423 b   |  15 lines

  1. if #argv<2
  2.     echo >&2 usage: uue file [file]...
  3.     echo >&2 result placed in file.uu
  4. else
  5.     local i
  6.     foreach i ( $* )
  7.     echo encoding $i to $i.uu
  8.     uuencode >$i.uu <$i $i
  9.     end
  10. endif
  11. # Uue is presented as is; no warrantee is either expressed or implied
  12. # as to it's suitability to any purpose whatsoever.  You assume all the
  13. # risk for all damage, even if caused by a defect in the software,
  14. # no matter how awful.
  15.